home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / include / Xm / Screen.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-30  |  1.0 KB  |  50 lines

  1. /* 
  2.  * (c) Copyright 1989, 1990, 1991, 1992, 1993 OPEN SOFTWARE FOUNDATION, INC. 
  3.  * ALL RIGHTS RESERVED 
  4. */ 
  5. /* 
  6.  * Motif Release 1.2.3
  7. */ 
  8. /*   $RCSfile: Screen.h,v $ $Revision: 10.1 $ $Date: 1994/02/03 15:48:30 $ */
  9. /*
  10. *  (c) Copyright 1990, 1991, 1992 HEWLETT-PACKARD COMPANY */
  11.  
  12. #ifndef _XmScreen_h
  13. #define _XmScreen_h
  14.  
  15. #include <Xm/Xm.h>
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19.  
  20. #ifndef XmIsScreen
  21. #define XmIsScreen(w) (XtIsSubclass(w, xmScreenClass))
  22. #endif /* XmIsScreen */
  23.  
  24. /* Class record constants */
  25.  
  26. typedef struct _XmScreenRec *XmScreen;
  27. typedef struct _XmScreenClassRec *XmScreenClass;
  28. externalref     WidgetClass xmScreenClass;
  29.  
  30.  
  31. /********    Public Function Declarations    ********/
  32. #ifdef _NO_PROTO
  33.  
  34. extern Widget XmGetXmScreen() ;
  35.  
  36. #else
  37.  
  38. extern Widget XmGetXmScreen( 
  39.                         Screen *screen) ;
  40. #endif /* _NO_PROTO */
  41. /********    End Public Function Declarations    ********/
  42.  
  43.  
  44. #ifdef __cplusplus
  45. }  /* Close scope of 'extern "C"' declaration which encloses file. */
  46. #endif
  47.  
  48. #endif /* _XmScreen_h */
  49.  
  50.